services.hostapd.radios.<name>.networks.<name>.authentication.saePasswords
Sets allowed passwords for WPA3-SAE.
The last matching (based on peer MAC address and identifier) entry is used to select which password to use. An empty string has the special meaning of removing all previously added entries.
Warning: These entries will get put into a world-readable file in
the Nix store! Using saePasswordFile instead is recommended.
Not used when mode is "wpa2-sha1" or "wpa2-sha256".
- Type
list of (submodule)- Default
[ ]- Example
[ # Any client may use these passwords { password = "Wi-Figure it out"; } { passwordFile = "/run/secrets/my-password-file"; mac = "ff:ff:ff:ff:ff:ff"; } # Only the client with MAC-address 11:22:33:44:55:66 can use this password { password = "sekret pazzword"; mac = "11:22:33:44:55:66"; } ]- Declared
- <nixpkgs/nixos/modules/services/networking/hostapd.nix>